home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phatbot_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  66 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12111);
  8.  script_version("$Revision: 1.2 $");
  9.  
  10.  name["english"] = "PhatBOT detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote systems appears to have PhatBOT installed.  
  16. This program allows the machine to be controlled via a P2P 
  17. network.  PhatBOT is extremely sophisticated and allows the 
  18. remote attacker to use the victim machine to perform various
  19. actions.
  20.  
  21. Solution : Remove PhatBOT immediately 
  22. See also : http://www.lurhq.com/phatbot.html
  23. Risk factor : High";
  24.  
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "PhatBOT detection";
  29.  
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  35.  family["english"] = "Windows";
  36.  script_family(english:family["english"]);
  37.  
  38.  script_dependencies("netbios_name_get.nasl",
  39.                      "smb_login.nasl","smb_registry_access.nasl");
  40.  script_require_keys("SMB/name", "SMB/login", "SMB/password",
  41.                      "SMB/domain","SMB/transport");
  42.  
  43.  script_require_ports(139, 445);
  44.  exit(0);
  45. }
  46.  
  47. # start script
  48. include("smb_nt.inc");
  49.  
  50.  
  51. path[0] = "Software\Microsoft\Windows\CurrentVersion\Run\Generic Service Process";
  52. path[1] = "Software\Microsoft\Windows\CurrentVersion\RunServices\Generic Service Process";
  53.  
  54. if ( ! get_kb_item("SMB/registry_access") ) exit(0);
  55.  
  56. for (i=0; path[i]; i++) {
  57.     val = registry_key_exists(key:path[i]);
  58.     if (val != NULL) {
  59.         security_hole(kb_smb_transport());
  60.         exit(0);
  61.     }
  62. }
  63.  
  64.  
  65.  
  66.